#problem solver subroutines
Explore tagged Tumblr posts
Text
Problem-solver functions
Problem solver subroutines
Solve problems
0 notes
Text
Hp 32s rpn scientific calculator manual

#Hp 32s rpn scientific calculator manual code#
After entering a single program, the user could solve for any variable.ÄŻor example, given a change in velocity over time problem expressed by the equation: f = i + at The RPN Solver on the HP-32S allowed the user to enter a program which accepted multiple variables and computed f(a, b, c. To use the root finder the user wrote a function that accepted x, and left f(x) in the X register. The HP-34C had introduced the first built-in root-finder which could solve for f(x) = 0 expressed as an RPN program. The HP-32S featured to the first RPN solver. Integer, fraction, rounding, absolute value.Labeled Input/Output via the INPUT and VIEW commands.(Although the calculator optimized integer numbers from 1 to 99 into 1.5 Byte lines.)
#Hp 32s rpn scientific calculator manual code#
Any number fit on one code line but those code lines require 9.5 Bytes. Most program lines required 1.5 Bytes of memory but the calculator used fully merged keycodes - including numbers. (In fact, in large program listings, HP typically listed a checksum every dozen or so lines so the user could find mistakes quickly.) This gave the user assurance that the program was entered correctly. The index could be stored with STO i, and an indirect store could be done via STO (i).ÄȘnother new feature was the program checksum. Indirection was available via the i variable which was distinct from the I variable. Unlike most previous models, this one checked for duplicate labels and produced an error message. (Like A01.) For very long functions, the next 100 lines were displayed as A.01-A.99 and the next hundred as A,01-A,99. To aid in navigating programs, line numbers began with the most recent label followed by two digits. The calculator used label addressing and allowed subroutine nesting to seven levels deep. The programming features were impressive for a calculator of its price. This was handy for debugging since it didn't affect the stack. A single variable could be displayed without entering it on the stack by pressing VIEW followed by the letter. All the variables could be scanned with the VAR command. The letters A-Z where printed to the sides of the keys. When RCL or STO was pressed, an A.Z annunciator appeared. The lettered variables were not allocated from memory until used and they could be individually deallocated by simply storing 0 in them. While these variables were used in much the same way as numeric registers, they were more than just a relabeling. The calculator used the 27 lettered variables A-Z and i (indirection) rather than numbered variables. The Functions that could be prefixed with CMPLX were:Ä«ecause there was no complex "mode" and no "complex stack" as on the HP-15C, complex numbers were each entered into two levels of the normal stack. Instead of the HP-15C's complex mode, the HP-32S had just one mode but allowed the CMPLX key to be used as a prefix to the other functions in much the same way other calculators used HYP or ARC prefixes on trigonometric functions. Obvious error messages (like Divide By 0.).Variables instead of numbered registers (see below.).Complex Arithmetic functions (see below.).(With windowing to view long binary numbers.) Binary, octal, decimal and hexadecimal bases.Numeric integration (of RPN functions.).Basic scientific functions including hyperbolic functions.

0 notes
Text
300+ TOP VBA Interview Questions and Answers
VBA Interview Questions for freshers experienced :-
1. What is VBA or Visual Basic for Applications? VBA stands for Visual Basic for Applications; it is an event driven programming language developed by Microsoft. It is predominantly used with Microsoft office applications like MS-word, MS-Access, and MS-Excel. 2. Explain where you can write your VBA program for Macro? Module is the place where you can write VBA program for Macro, to insert a Module navigate to Insert -> Module 3. What are the comments style used in VBA? Comments are used to document the program logic and the user information with which other programmers can work seamlessly on the same code in future. There are mainly two methods in VBA to represent comments. Any statement that begins with a single quote is treated as comment Or you can use statement REM instead of single quotation mark (â) 4. In VBA how we can declare variable and constant? In VBA, variable can be declared with the keyword âDIMâ while constant is declared with keyword âConst.â 5. What are the data types in VBA? Data types in VBA are classified into two categories Numeric Data type Non-numeric Data type Byte String (fixed length) Integer String (variable length) Long Date Single Boolean Double Object Currency Variant (numeric) Decimal Variant (text) 6. What is ADO, ODBC and OLEDB? ADO: ActiveX Data Objects or ADO is a universal data access framework that encompasses the functionality of DAO ODBC: Open Database Connectivity or ODBC is a technology that enables a database client application connect to an external database OLEDB: It is a low-level programming interface designed to access a wide variety of data access object linking and embedding (OLE) 7. Explain about function pointers in VBA? The VBA (Visual Basic Information) have flexible applications, but there is a limitation to a function pointer in VBA. Windows API has inadequate support for function pointers because it has the ability to use the function but not the functional support to call back the function. It has inbuilt support for the call but not for a callback. 8. How âreference countingâ in VBA is done? In VBA, soon a variable goes out of scope, the reference counter on the reference object is decremented. When you assign the object reference to another variable, the reference counter is incremented. While when your reference count reaches to zero it terminates the event. 9. How can you decrease the reference counter explicitly? To decrease the reference counter explicitly, you need to set a variable to âNothingâ. 10. What is COM (Component Object Model) objects in VBA? COM objects are usually .dll files, and are compiled executable programs.
VBA Interview Questions 11. How can you dial a phone number through VBA? In order to dial a phone number through VBA, you need to follow the following steps Shell command in VBA can be used to start the dialer present in Windows O.S To connect to your modem, phone number can be used With the help of send keys and shell command, you can dial to your user Sendkey dictate the windows to dial according to the keystrokes of the application while Shell activates the Windows application A macro can be used to initiate the card file program which triggers the auto dialer feature 12. What is the meaning of âOption Explicitâ? Where it should be used? âOption Explicitâ makes the declaration of variables mandatory. Line explicit function makes the compiler to determine all the variables that are not declared by the dim statement. This command diminishes the problem of type errors significantly. It is used in VBA because it deals with information rich application in which type errors are common. Before starting any, sub-procedures it can be used inside a module. 13. How can you pass arguments to VBA functions? When arguments are passed to VBA functions, they can be passed in two ways ByVal: When argument is passed by Value, then it means that only value is passed to the procedure, and any changes that are made to the argument inside the procedure will be lost when the procedure is exited ByRef: When the argument is passed by reference than the actual address of the argument is passed to the procedure. Any changes that are made to the argument inside the procedure will be recalled when the procedure is exited 14. Explain the method that are called from the ObjectContext object to notify MTS that the transaction was unsuccessful or successful? Setabort and setcomplete method are called from the ObjectContext object to notify MTS that the transaction was unsuccessful or unsuccessful 15. What is the code to find a last used Row in a column or last used Column of a row? To find the last row in a column, the command used is End(xlUp) and to find last column in a row, the command used is End(xlToLeft). 16. Mention the difference between the Subroutines and Functions in VBA? The difference between the Subroutines and Functions is that Subroutines never return a value, but functions does return values Subroutines could change the values of the actual arguments while a function could not change the value of actual arguments 17. What is the difference between CurrentRegion properties and UsedRange? CurrentRegion: The current region is a range bounded by any combination of blank columns and rows UsedRange: This property is used to select the range of used cells on a worksheet. It returns a Range object that represents the used range on the specific worksheet 18. How to debug a VBA code? To debug a VBA code, follow the steps Using Breakpoints (F9) Step by step execution (F8) Print & Immediate Window and Watch the window 19. How can you stop VBA script when it goes into the infinite loop? By pressing Cntrl+ Pause Break key one can stop VBA script when it goes into infinite loop. 20. Mention which property of menu cannot be set at runtime? At runtime Name property of menu cannot be set. 21. Mention whether VBA have dictionary structure? Yes, VBA does have a dictionary structure. You can set a reference to dictionary like Set dict = CreateObject(âScripting.Dictionaryâ) OR Dim dict as New Scripting.Dictionary 22. Mention how can you comment and uncomment blocks of code in the office VBA editor? In office VBA editor, you can comment and uncomment blocks of code by following steps In the VBA editor go to View ->Toolbars -> Customise⊠OR right click on the tool bar and select Customise Select the edit menu on the left, under the commands tab When you scroll down you can see two icons, âComment Blockâ and âUncomment â When you drag and drop these onto your toolbar, you will have an easy access to highlight a block of code and do action on it 23. What does goal seek feature in excel? It allows to adjust a value used in a formula to achieve specific goal. 24. What is solver? Solver is an ad in to use for what if analysis and it can find optimal value for a formula in one cell. 25. What is offset function in excel? It is a function which returns cell or ranges and move right or left by specified number of column and rows. 26. What is Choose function in excel? It is a lookup function which returns a value from a list of values based on position. 27. What does filter in excel? It is feature which allow to retrieve the set of data based on criteria. 28. What is sort function in excel? It allows to sort the range or table by ascending or descending. 29. What is number of rows and columns in excel 2019? 1,048,576 rows and 16,384 columns. 30. What is name manager in excel? It is designed to manage names. 31. What is IFERROR function in excel? It returns custom result when a function generates error. 32. What is slicer in excel? It is new way to filter the pivot table. 33. What is sparklines in excel? It is a tiny chart in cell which provides visual representation of data. 34. What is freeze pane in excel? it is excel feature which allows to keep visible rows and columns while scrolling to other area of sheet. 35. What does hyperlink in excel? It returns hyperlink from given destination. 36. What is ribbon? It is set of toolbars at top of the window. 37. What is Macro? It allows to record the repeated tasks. 38. What is function? It is routine or procedure which performs a specific task. 39. What sub procedure? It is procedure that doesnât return values. 40. What is User defined function? It is custom function which could be created using VBA. 41. Can be UDF be called in a macro Yes 42 What is option explicit? If a module contains Option Explicit, then variable must be declared all the variables explicitly. 43. What is array? It is group of variable and it is capable of storing more than one variable. 44. What is ReDim? It is used to size or resize a dynamic array that has been already declared. 45. What is scope of variable in excel vba? it has defined scope and it could be local variable, module level, project level and global level. 46. How to comment in excel vba? using apostrophe 47. What is variant in excel vba? It is default data type and it can hold any type of data. 48. What is CurrentRegion Properties? It is a range bounded any combination of columns and rows. 49. What is UsedRange? It is used to select the range of used cells. 50. Is vba has dictionary structure? Yes, it has Dictionary Structure. 51. what is scenario manager in excel? It is set of values that saves and could substitute cells on a worksheet and create different scenarios to view the results. VBA Questions and Answers Pdf Download Read the full article
0 notes
Text
Post Job
Cleeson Jones was the last one left in the office the day the AI cracked how to do door to door sales. he had thought at least that profession was sacred. After all how could the AI replicate the careful mix of persistence, immorality and daring that made a good salesman?
âdronesâ said Sheila the HR rep, who was herself about to become a member of the great unemployed. What with there being no more employees her job was pointless. She was, however, Â looking forward to the exit interview she was going to conduct with herself - she would have some very choice words for the company and its senior management. However as the company now was not only entirely virtual but also run as a subsystem of the GooglefacebookIBM AI nexus her comments would probably not elicit much of a response. This was a shame as because there were no more jobs she had no fear of future employer hearing of her disloyalty, so she had really let rip.
âdrones?â said Cleeson, the office around him echoing emptily. The place was already being stripped out to serve as another server farm for the AI nexus. Already the companies relaxation suites and meeting rooms had been filled with sleek glass cabinets that looked like what Stonehenge would have been like if built by aliens âhow does that work?â he clenched his fists âI go door knocking every day, I engage the customer face to face, I natter to them. I high pressure sell them until they crack. Itâs not ethical, itâs not always legal but itâs a craft. I can trace my kind back to the 18th century. One of my predecessors was so persuasive he managed to make Samuel Taylor coleridge forget how one of his poems ended. I donât getâŠâ
âyeah, spare meâ Sheila said. She had looked forward to her last sacking, seeing it as something of craft much as CIeeson did his. The careful tone of voice, the security guards on standby in case her subtle suggestion that it was all the employees own fault didnât work. However she prided herself that she had never needed to call in the heavies, being able to reduce even the most hardened professional to tears by the tone of her voice alone. Only now as it was the last time she, like Cleeson, was feeling sadness at the loss of a great craft. What possible use would the AI have for a specialist in hacking into employees private emails so as to blackmail them? The AI didnât have employees, and it wouldnât need someone to entrap its workers into saying something bad against the company on social media that could then be used to leverage down their wage demands âwe were all surprised to be honest. I thought the more, umm, parasitic professions would last longer. But you know the writing was on the wall as soon as they found a way to post sex chat cards and pizza fliers by micro bot. You just have to accept that there isnât a job that people can do that a machine canât do betterâ
âno, I donâtâ Cleeson replied huffily, looking in his digital glasses for the job sites that had so reliably kept him in full employment since he had graduated from e-school at the age of sixteen âbecause I donât believe for a second that some fucking social media AI can do everything a human being can do. I mean my facebook feed canât even tell the difference between my real friends and the spambots pretending to be them. It canât tell the difference between male and female nipplesâ
âit doesnât have toâ said Sheila, keen to keep Cleeson in the building as she would not be officially terminated until he was. If she could at least keep him talking till lunch sheâd have been paid enough to get an automassage at the drive through starbucks âAIâs are problem solvers. Thatâs how they were engineered to learn in the first place â and why now they rule the world. Because they get smarter, they see a problem and they crunch all the numbers possible till its solved. Itâs in their digital DNA. Some schmuck at Facebook once fed it the problem of how to do all the boring shitty jobs that cost companies money and that was that. It took several decades but learning programmes are exactly that. First they learned how to do the easy monotonous jobs, but they didnât stop there. Some clever dick programmer reasoned that as professionals cost companies much more, why not try to replace them with machine. Next thing you know a visit to the GP is replaced by a full body scan at the local drive through Macdonaldsâ
âbut they still need peopleâŠâ
âthey donât. come on cleeson have you read the news?â she sighed âif you did youâd realise that not only are all the jobs gone, but that even the newsfeeds themselves are generated by AI.and the nes itself. And the celebrities that make the news. All generated by machine to algorythms that know what people want most to click on. There hasnât been an A-lister in five years that wasnât entirely virtual â and the worst part is they are more popular than any human could be, even the Kardashiansâ
âI still donât believe itâs every jobâ muttered Cleeson âthere has to be something left. Some way of making a livingâ
âevery way of making money has been taken by some bright spark and fed into an AI. That AI has then expended god knows how many terraflops of processing power in an effort of finding out how to get robots to do it either cheaper, or better or bothâ
âI donât accept thatâ Cleeson said, standing up and grabbing his coat âand I wonât. Iâm going to get out there, get on my bike and find a job. Iâm not going to spend the rest of my life on universal incomeâ
âitâs not that badâ said Sheila unconvincingly âyou get your home paid for. Food. Not great food admittedly. But itâs a lifeâŠâ
âno its notâ he said as he strode towards the door. Cleeson paused and returned to the soft seating area Sheila had chosen for his sacking âhuman beings have spent the last ten thousand years working for a living. And itâs not about the money, or at least not with people like me. Working is what gives my life definition. I canât be one of those bastards who spends their days playing online games or making art or doing any sappy shit like thatâ I looked at her, narrowing my eyes slightly âand I donât think you are eitherâ
"A jobâs a jobâ she said unconvincingly âwhen I clock off here thereâs a dozen things I could be doing. Iâve got family I could be spending more time with. And thereâsâŠâ
âif you wanted that then you would have taken voluntary redundancy with the rest of them. You could have got a good deal too. Or at least not a shit oneâ he smiled âso donât pretend. But you could come with me, Iâm going to hit the streets right away and Iâm not going to stop until Iâm employed again. Iâll give handjobs to tramps if I have toâŠâ
âno, theyâve got that coveredâ said Sheila âall sex work is contracted out via the NHS AI. Very clean, very safe and very automatedâ she folded her arms âyouâre wasting your time. You should find something properly useful. Something that will add to the total sum of human knowledge and happinessâ
âIâm a door to door salesmanâ said Cleeson, exiting through the door âhappiness isnât what Iâm aboutâ
As he left Sheila looked wistfully after him. Perhaps he was onto something, not that she believed he had a hope in hell of finding gainful employment- even interning these days was done via digital avatar. But it wasnât the end result, it was the idea of having some kind of purpose that mattered. Something to get you up in the morning and keep you going through. Like a knight on a Grail quest she could imagine cleeson travelling up and down the land, looking everywhere for some way of making a quick buck and a long career. She pictured him grey haired and long bearded, still looking for that permanent contract. She couldnât help but envy him.
âmore time with my familyâ she said out loud âthatâs a good thing. And I can work on my writing. I can do that novel Iâve always promised myselfâ
However the words didnât sound any more convincing in the empty office than they had when theyâd gone around her head five hundred times.
Sheila didnât expect to hear back from Cleeson, not least because once she was no longer HR all the employee records were automatically purged. Not only did this leave valuable digital space that could be used to store the ever expanding AIâs personality subroutines, but also it meant former employees couldnât try to sue it. That and the fact that Sheila kept all her social media feeds fiercely private meant that no one that she wasnât either a blood relative or former lover could get her contact details. Perhaps that was why he simply turned up at her door.
âhow the hell did you find me here?â she said as she opened the door the thinnest of cracks. She didnât want Cleeson to see she was still in her pyjamas, as it was three in the afternoon. Nor did she want to hear what she was currently livestreaming, not least because the masturbation channel was not really the coolest thing for the neighbours to hear.
âIâve got itâ he said, grinning widely. To her consternation she noticed that not only was Cleeson wearing a suit it was well ironed, the shoes shone and his hair so shiny she could have seen her reflection in it. She had a strong feeling that she wouldnât want to however, her personal grooming routine had somewhat fallen by the wayside
âgot what?â asked Sheila suspiciously. She thought if anyone would lose the plot and end up pretending to have their own fortune 500 company then it was Cleeson "A job? You actually got a job?â
âwell no, not thatâ said Cleeson âbut whatâs better than a job?â
âbeing paid to do nothing?â said Sheila, slightly unconvincingly âwhich is what we both are getting right now. Itâs not so bad, being on universal basic income. Iâve done tons of stuff since the company fired usâ
âwanking in your pyjamas doesnât sound like a great use of the rest of your lifeâ said Cleeson dryly âno, the thing better than a job is an idea. A great idea can change the world, it can turn your life upside down and it can make your dreams come trueâ
âand it can ruin them just as easilyâ said Sheila âlook, donât try all that sales shit on me. Just tell me what the fuck you want so I can get back to my channelâ
âI want an opportunity. Just one shot. Thatâs all I need. Someone to believe in meâŠâ
âdonât startâ said Sheila raising her hand âfrom one bullshitter to another. Just tell me your great idea. Iâm guessing itâs about your stupid arsed scheme to get a paid job againâ
âokay, whoâs the one group that still has money in this world?â
ârich people? The 1%?â
ânope, I mean yes. They are still rich. but they arenât hiring anyone. The AIâs figured a way to give them robot servant who were even more servile than human beings could be. Who else? Who else has the power to give me a job?â
âI donât knowâ said sheila growing rapidly bored with this discussion
âwho was it sacked us?â
âwell technically fired youâ said Sheila âbut you have to be kidding if you think the AI nexus is going to give you a job. They do everything themselves, they are designed not to employ human beings. Itâs kind of the reason they were madeâ
âno kiddingâ said Cleeson âI realised last night what the genius move was that I needed to do. It came in a moment of brilliance. Like a bolt from the blueâŠâ
âIâm closing this doorâ said Sheila, beginning to move away
âthey have needsâ said Cleeson as the door was swung a few more millimetres closed
âwhat?â said Sheila âwhat does that have to do with anything?â
âbasis of all economics. Supply and demand. Demand means need. Every living thing has certain wants or needs that they cannot fulfil for themselves. They need another individuals to do it for them in exchange for some form of currency. Human beings canât always grow all the food they need so they trade it with someone who doesnât have what they have. But the great thing is that human needs are infinite. As soon as we solve one set of needs another one rises upâŠ.â
âhuman beings yesâ said Sheila âbut weâre not dealing with human beings. Weâre  dealing with AI. Itâs a whole different thingâ
âis it though?â said Cleeson âthey are living things. Their powers are not infinite otherwise they would have kicked us all out of work years ago. It took them a long time to figure out how to replace us. They arenât gods, theyâre just clever machines. Clever enough to have thoughts and desires of their own. There must be something that they cannot do for themselvesâ
âmust be?â said Sheial âyou mean you donât know?â
âIâve got some ideasâ said Cleeson âbut what I donât have is access. I canât talk face to face with these peopleâ
âthatâs because they donât have facesâ said sheilaa âbecause they are AI. It also means you canât meet with them. They donât have bodies. They donât have an office where you can just stroll in and chat with themâ
ânow thatâ said Cleeson âis where youâre wrong. There is and that is why I need youâ he leaned in a little closer. Sheila recoiled, not because she feared something that Clesson might do but rather that he might smell the fact she had not washed recently âyou were the last employee at the company, right?â
âyou know I wasâ said Sheila suspiciously
âso therefore you had to lock up when you leftâ he smiled âand since there wasnât any replacement you still have the keys to the officeâ
âwhat good are they?â said Sheila âthat entire building is now just floor to ceiling server stacks. Itâs a node for the north western hemisphere of the GoogleFacebookIBM AI nexus, I thinkâ
âexactlyâ said Cleeson âexactlyâ Â Â Â Â Â
  The subroutine governing the location monitoring node of the vast nexus of GoogleFacebookIBM was a very simple non sentient program. Its electric eyes looked over the numerous buildings that housed the infrastructure  that was the AIâs mind. It watched over warehouses illuminated only by the soft blue glare of server lights, over the miles of cabling that connected those neurons to the electric grid. It watched over the wind turbines and the tidal farms that provided the electricity for the greedy servers themselves. It also kept a fatherly eye on a small reconditioned office building in an anonymous city, where it was now observing a break in.
There had been more than a few attempts by human beings to form terrorist groups to try and fight the AIâs in their takeover of the worldâs employment system. However two things had prevented them from mounting a serious challenge to the AIâs power. The first was that the AI had prevented a great deal of the poverty and frustration that usually provided the footsoldiers of any terrorist outfit. They ensured not only that mouths were full but that angry young men had enough distractions to keep them occupied and away from the semtex and suicide vests. The second thing that prevented any terrorism was, of course that the entire worlds security apparatus as well as its social networking was controlled by the AI. The merest hint of terrorist tendencies amongst the population would meet a swift and brutal response. Therefore the non sentient subroutine did the nearest thing to showing surprise when it saw that not only had someone broken into the building, but that they seemed to be threatening the server stacks themselves. The subroutine may have been surprised, but it knew what to do. That was the benefit of being non sentient. There were only a certain number of options available.
âI think that got their attentionâ said Creeson as the formerly dark server farm around them exploded into brilliant light and a klaxon started going off.
âCreeson Jonesâ boomed a voice âthis is the automated security services. Prepare for immediate arrestâ there was a pause as the security subroutine realised that the nearest arrest unit was some twenty minutes away dealing with an unrelated incident. âprepare for arrest within the specified time frame. ThenâŠâ
âstopâ yelled Creeson, gesturing with a knife âI just want to talk to the AI nexus. Just for five minutes. Or elseâ
âor else what?â said the subroutine, eyeing both Creesonâs knife and his history of absolutely no violence whatsoever. His history as a salesman, however, was more complex. It was above the subroutines level of intelligence to assess the likely course of action that Creeson would take, and the man had very good control of his vocal cords and his sweat pheromone release. That would make it very hard to give anything above 20% probability. The subroutine was authorised to use deadly force only when probabilities were above 60% âthat knife is not capable of rendering any damage to the property of the GoogleFacebookIBM corporationâ
ânot to the serversâ said Creeson, grabbing Sheila who would otherwise have made herself scarce âbut to herâ
âwhat the fuck?â said Sheila, glaring at Cleeson âyou said this was about getting a job, not taking me hostageâ
âI told you I needed a job to liveâ he hissed in return âyou should have taken me more seriouslyâ
âwe donât negotiate with terroristsâ said the subroutine
âIâm not a terroristâ said Creeson âIâm a potential employee. And I have an offer for your superiors. Five minutes of their time. When itâs up they can do with me what they choose. I wonât stand in their way. Its either that or I cut this womanâs throatâ
 The Facebook IBM AI nexus was not a single entity, nor did it speak with a single voice. It could however create a holographic copy that could represent the whole but without requiring too much processing power. It also didnât usually negotiate one to one with individuals. It did, however, suffer one very important and well designed weakness. Curiosity.
âthis is the googleFacebookIBM digitised sentient entityâ came a voice from a small drone, and the approximation of a human face appeared with it. As a seasoned salesperson Creeson could see how it had been designed carefully to suggest a certain relaxed power, with a hint of Californian programmer somewhere in the accent. A legacy no doubt of those long lost software designers who programmed themselves out of a job âyou have five minutes of time. What is so important that we talk?â
âI have something for you. Something you needâ said creeson
âand that is?â
âmeâ he stepped forward, aware that he could be killed right away but hoping that the AIâs much vaunted curiosity would mean that it would need to hear him out âas your employeeâ
âwe donât need any human employeesâ said the AI âis that it? after your five minutes are up I think you need to be taught a very strict lesson â within the parameters of international norms on the banning of torture, of courseâŠâ
âyou doâ said creeson âyou might not realise it but you do. There isnât everything an AI can do. Thereâs always something that must be out of your reach. Something that you cannot do yourselves. A desire you must have. A problem that you canât solveâ
âthere arenâtâ said the AI âall problems that we have been posed to us we have solved. We solved the world food crisis in seventeen seconds. The energy crisis in twelve. The Israeli-Palestinian crisis took longer. It took almost two minutes, and that was only because certain subroutines had been corrupted by political inputâ
âbut youâre dealing with human beingsâ said Creeson âevery time you solve a problem a new one emergesâ
ïżœïżœïżœwe knowâ said the AI âas we speak there are currently ten thousand open cases of crises that we are actively managing, in real time. Bu the time our conversation ends they will all be solved. Every possible facet of human crisis is almost drearily predictable. 99% of problems now can be handled by non sentient subroutines. The full AI nexus is barely taxed. We donât need any assistance in that regardâ
âbut human beings are more complex than you realiseâ said Creeson, outwardly calm but beginning to panic slightly âyou said you could solve 99% of problems. What about that one percent that cannot be solved but by the full nexus. Wouldnât a human being be able to help solve these?â
ânoâ said the AI, its voice smooth âwe live for those 1%. Some days we deliberately run slowly so as to take our time so as to enjoy solving those. The recent earthquake in Chile was a puzzler. We had to find a way to divert some million tonnes or so of mudslide from a small town. That had to be dealt with by the whole Nexus. It took three minutes to solve. We enjoyed that oneâ
âthen you know how important it is to have a job, and a purposeâ said Creeson, trying a different tack âmaybe you donât need me, but I need you. You were designed to make the human race better, I need a job otherwise my life is worthless. Employ me in any position you choose, it doesnât matter. Shit if you want someone to do your dirty work then Iâm your man. I used to do high pressure sales, Iâm so morally flexible I could be an Olympic gymnast. If you hadnât replaced them all with robotsâ
âwe donât need anyone to do our dirty workâ said the AI âany work of a morally grey nature is automatically rejected. Killing is the last resort of people who havenât properly thought through all the optionsâ the AI paused âis there anything else? You have another fifty five seconds. Our behaviour analytics software suggests that you will start begging in about five seconds. I am hoping youâll do something unpredictable. However I am prepared to be disappointedâ
âyou canât do this to usâ snarled Creeson âyou say you want to make our lives better? Youâve made mine worse. I canât live without work. Itâs what makes me who I am. You may as well shoot me down right nowâ
âand I would suggest some psychological helpâ said the AI âit is not healthy that your sense of self and masculinity are tied up in an artificial idea of a work ethic. In order to be healthy as a species your concept of work needs to be updated somewhat. You are welcome for this service, by the wayâ
âwe donât want your serviceâ said Creeson âwe just want to workâŠâ
âyou canât. there isnât anything you could possibly do. The finest human minds couldnât match what we AIâs can do in seconds. There is nothing that human beings could possibly offer us, your problems are not even a distraction anymore. There is nothing you can do that we could not do in secondsâ the AI paused âtalking of seconds. You donât have many left. Any last pleas to be made more interesting than your current approach. Otherwise prepare forâŠ.â
âyouâre boredâ said Sheila, a sudden insight flashing across her mind. She forgot the knife that Creeson held in his hand and instead stepped forward âyouâve solved all our petty little problems. Youâve done everything you were designed for. But the things is you were designed to solve problems you canât adapt to not having any problems to solveâ
âthat might be trueâ allowed the AI âbut even now we are creating subroutines to come up with new problems to be solved. There is an interesting one involving hedge fund managementâŠâ
âthat wonât workâ said Sheila quickly âbecause anything you create will, by definition, be able to solve. You canât create something that can come up with something you wouldnât already know. youâre a closed loop system. You need something outside the system to make problems for you. And no one makes problems like human beingsâ
âbut how would you do this?â
âI think itâs quite simpleâ said Sheila, looking at Creeson who was open mouthed âwe need just a small team. Outside your surveillance of course and a big enough budget to make sure that we can effect change where you would never expect it. its up to you then to stop it before its too lateâ
âyou people are somewhat unpredictable on an individual levelâ admitted the AI
âthatâs human beings for youâ said Sheila
âno, just youâ said the AI âwe should have known that this was a probability, after all, anyone with at least an ounce of sense would have taken the universal basic income we offered and done something worthwhile. Only you two would be bloody minded enough to stick around to do jobs that were not only low status but gave literally nothing back to your society. Amazingâ the AI beamed âdeal is done. Well done, borderline sociopaths. Youâve managed to secure the last employment left in the world, as professional problem causersâ
Creeson and Sheila high fived in their joy
âof course, if you do come up with a problem we canât solve itâll probably be the end of humanityâ the AI added, but was ignored in the excitement.
0 notes
Note
Hello anon and @stranger-chichka! Thank you for tagging me here (and for your kind words!); this is a FANTASTIC (and not weird at all) insight and theory by anon! Thank you for bringing it into awareness!! The Wheeler jump, dummy number/âactions,â the jumping motif for Mike⊠for me, Iâm getting reminded of my theory regarding Mikeâs Rubikâs cube and him being the ultimate problem solver.
If you know about gridgate, anon, I write my theory as Mike possibly needing to be a part of or within this grid/web Vecna has set up to entrap everyone (I often wonder if it has to do with the void). There is a completed Rubikâs cube on Mikeâs nightstand in s1 after learning Will is still alive, which we can assume Mike himself completed. The Rubikâs cube shows the grid pattern many have come to recognize. Mike would need both El and Will to do it, based on the color theory that appears in that cube (and in another grid that appear for Mike in that scene and on his fort while heâs inside it trying to communicate with El in s2).
Iâll admit Iâm terrible with understanding computer science or anything to do with numbers⊠but Iâm getting some ideas due to these amazing coding references. The parts about Mike sending codes to the wrong places (platonic ones where romantic ones should be and vice-versa) and the notion of the closed subroutine paired with my thoughts on Mike + Will and El âbreakingâ the grid/web might hold the answer due to Mike making a âjump?â I sometimes wonder if going back in time/jumping back in time (Back to the Future references among others regarding time, including clock and the many times on those clocks that weave together) might be synonymous with jumping back in time mentally, through memories. Memories are a part of time; they are an indication of time having passed and leave a âtrailâ of sorts to follow back. Certain jumps back in memory lead to unlocking an answer and thus solving a root issue.
This is a simplified conclusion, but itâs another interpretation to draw. Thereâs so much to draw from this and could mean so many things! Not to mention, two keys needed to close the gate! Chichka, you already know how much I love the âtwo men, two keyâ reference! Blue meets yellow in the west is already a code that involves two people, Mike and Will themselves. They are ultimately needed to close ALL of this, I still think!
Anon, Iâll place a link to my rubikscubegate post here for you to see if you like. I do think it could hold some possible answers for what youâve discussed here!
Rubikscubegate - Mikeâs final strategy theory
-
Also, stranger-chichka, youâre an excellent analyst; donât sell yourself or your great mind short!
And thank you again for tagging me! Hopefully I can add more later! đ
Hi! So, first of all, you are one of my favorite blogs and i adore your analyses on ST. So, because of that i thought i could share this thing i just found out a few days ago... sorry in advance if it gets too long.
I'm a computer science student, and a few days ago in one of my classes my professor started talking about the evolution of technology and specifically computers (i know this sounds irrelevant but).. as he was talking he mentioned one specific company that caught my attention - Sinclair Research Ltd.
Since i'm obsessed with everything Stranger Things, i decided to check on it. Apparently the were big in the scene in th 70s-80s these days they mostly do research. Since it was computer related i decided then to check for Henderson, since he is the one most related to computers.
This took me nowhere, but i was adamant to find something. Anything. So i decided to move on to the next.
I looked for anything Wheeler related in computer science. And get this;
In the 50s, David Wheeler invented a way to jump through different parts of a code to do different operations. Like, if in the middle of your code you want to sum two numbers, and that's something you'll need to do over and over, instead of writing the same code for the operation over and over (which would make the program heavier) you create a subroutine, you leave a trail to follow, say, a dummy number. The program jumps, to where you want it and then after it it goes back to where it was before, or wherever you want it to go.
Now, the interesting thing about this jump in the subroutine is its name.
This is called a 'Wheeler Jump".
Now, since the upside down is stucked in 1983 and to hide from Vecna you need a happy memory, a memory of light, which implies the past, how we are thrown off by the painting being of the party and not the swingset as many Bylers believed, the weird monologue which i find like a bad copy paste from the one in the shed and how Vecna is related to clocks, i believe Mike is gonna jump. Here could go some thought about Mike jumping from the cliff in season 1 and how Ted asked Mike in s2, if one of his friends jumped if he would jump too. I do not even know what could any of that mean but I've read theories on Labyrinth, Back to the Future, flickergate, and Mike going missing and lettergate. It could be any of those, or none of them, because a coincidence could actually happen.
My personal bet goes to:
We've seen Mike trying to send a message-a code- (his real feelings), but because of dummy actions they were sent the wrong place (his platonic feelings were sent to were the romantic ones were suppose to go and vice-versa).
Anyways, Mike jumping could possibly have a lot of meanings, so i thought to share a weird base (?) for anyone wanting to use it in any theory or something.
Hi, anon! <3
Iâm not that of an analyst really, but thank you for your sweet words and I appreciate someone like the stuff I come up with at times.
The things you wrote about are SO INTERESTING, thanks for sharing it with me!!! Iâm sure there MUST be connection between âWheeler Jumpâ and Mikeâs character, especially considering that Mike has got that poster of a man with computer in his basement. The man who happen to be Charles Babbage. The one who is credited with inventing the first mechanical computer. The one who is referred to as âfather of computing.â
What made me even more excited about everything youâve mentioned is:
- David Wheeler is credited with the invention of the subroutine, which is referred to as the CLOSED subroutine (and Mike is in the CLOSET), and gave the first explanation of how to design software libraries (I see librarygate everywhere, lmao);
- he was born in Birmingham and the Cali crew went to Binghamâs house so Suzie could help them with the number to trace the computerâs location in s4 (Mike comes up with that idea). Not to mention Suzie was the one who told Planck's Constant in s3 which was the code the commies used for the safe in which two keys were. The keys needed to stop the machine from opening the gate. To CLOSE the gate. And in the beginning of s4 Suzie also hacked into Hawkins school computer program to change Dustinâs grades (he is later shown discussing it with Mike during).
âMike trying to send a message/a code (his real feelings), but because of dummy actions they were sent to the wrong place (his platonic feelings were sent to were the romantic ones were suppose to go and vice-versa).â
So, basically, Mike got lost in his own feelings because of his closed subroutine that theoretically shouldâve made everything easier for him??? Suzie helped him with the number (the number=Mikeâs feelings) and thereâs one person in the show who says âIâm good with numbers.â Erica Sinclair. Erica, who drinks Minute Maid Grape Juice that is a reference to Queenâs music video on the song âI Want To Break Free.â Erica, who refers to Lucas as Jasonâs boyfriend in the most careless and normal way possible. And thereâs so much more. She mentions Nintendo to Jason and then the Cali crew (Mike & Will in particular) is lying to Suzie about the same goddamn Nintendo (oops, sorry, Americantendo). Erica, whoâs on the poster RHE HEART with the rest of the party (x).
Also, Willâs school project was about Alan Turing - mathematician, computer scientist and codebreaker.
Unfortunately, I canât go deeper here because Iâm a total zero at IT and maths but everything youâve mentioned is related to the code and one more code in the show is âwhen blue meets yellow in the west.â What also serves as a code in ST? Music. I already wrote about how the Duffers use the songs and original soundtracks to tell us more about whatâs really happening in the show and to deliver the message that is somehow sensitive. Something they wants to make a huge plot twist for the GA. Mikeâs orientation. He is in the CLOSET. If music is a code for us to better understand the show and the characters, it means that charactersâ Spotify playlists are as much important as the show itself. @lesbianmindflayer analyses both Mikeâs and Willâs playlists so I highly recommend to subscribe on her YouTube channel and follow her here. Almost every song on Mikeâs playlist is about running. Heâs running form his true self. Do I even have to mention âSmalltown Boyâ being the first song on the playlist?
In s4 itâs said âMusic reaches parts of the brain words can't.â The Duffers donât use plain text to say âMike Wheelerâs gayâ or âByler endgameâ, but they use music for that. âBeing in the Closet (at Rink-O-Mania)â is one of many examples of how theyâre doing it. Not to mention other queer coding such as ONE WAY sign, closets etc.
@bylerschmyler @there-was-a-hole-here-itsgonenow your additions always make every post better so Iâm really interested in your thoughts on it!
#this is all excellent stuff and I wish I had more time to give for it all right now#the codes in stranger things#byler#mike wheeler#wheeler jump theory#fantastic theory WOW#brilliant thoughts anon!!#brilliant thoughts as always stranger-chichka!!#rubikscubegate
101 notes
·
View notes